home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / protect-your-privacy / p.g.p. / pgpsendmail / source / protos.h < prev    next >
C/C++ Source or Header  |  1996-02-26  |  1KB  |  65 lines

  1. /* Prototypes for functions defined in
  2. pgpsendmail.c
  3.  */
  4.  
  5. extern char PRGNAME[12];
  6.  
  7. extern struct NetSupportLibrary * NetSupportBase;
  8.  
  9. extern struct __iobuf * mailfh;
  10.  
  11. extern char mailfilename[64];
  12.  
  13. extern char * argline;
  14.  
  15. extern char * tmpbuf;
  16.  
  17. int main(int , char ** );
  18.  
  19. void my_exit(void);
  20.  
  21. void sendmail(void);
  22.  
  23. char * ArrayToLine(char ** );
  24.  
  25. int CheckKeyAvailability(char ** );
  26.  
  27. int FindKey(char * , char * );
  28.  
  29. char * stristr(char * , char * );
  30.  
  31. /* Prototypes for functions defined in
  32. rfcstuff.c
  33.  */
  34.  
  35. char ** FindReceipients(char * );
  36.  
  37. char * FindHeaderEntry(char * , char * );
  38.  
  39. void SplitAddressLine(char * , char ** );
  40.  
  41. void ParseAddressLines(char ** );
  42.  
  43. void MakeDomainAddress(char ** );
  44.  
  45. /* Prototypes for functions defined in
  46. expandalias.c
  47.  */
  48.  
  49. char ** ExpandAliases(char ** );
  50.  
  51. void LoadAliases(void);
  52.  
  53. int AliasExists(char const * );
  54.  
  55. int UserAliasList(char const * , int (* )(char const * , long , int ), long , int );
  56.  
  57. /* Prototypes for functions defined in
  58. system.c
  59.  */
  60.  
  61. int ConfirmEncryption(void);
  62.  
  63. char * GetOriginalCmdLine(int , char ** );
  64.  
  65.